@[deleted]: Changing the navigation bar is a little bit tricky, because the first links are generated dynamically from the lines 170 - 175 in header (include > client > header.inc.php)<?php if($nav && ($navs=$nav->getNavLinks()) && is_array($navs)){ foreach($navs as $name =>$nav) { echo sprintf('<li><a class="%s %s" href="%s">%s</a></li>%s',$nav?'active':'',$name,(ROOT_PATH.$nav),$nav,"\n"); } } ?>If you have a look at the following lines you can see the code how to generate static links depending on the visitor state (guest or user). Remove the lines 170 - 175 and replace it with your code. I think it's not a good idea to change to much basic core files. These will cause troubles with the next update...Best regards,Jürgen